home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 47 / CD-ROM 47 / CD-ROM 47.iso / aplicat / minibase / _setup.1 / MiniBase.exe / 0 / RCDATA / TMDICHILD / TMDICHILD.txt
Encoding:
Text File  |  1999-03-12  |  7.8 KB  |  331 lines

  1. object MDIChild: TMDIChild
  2.   Left = 185
  3.   Top = 155
  4.   Width = 429
  5.   Height = 215
  6.   Caption = 'MDI Child'
  7.   Font.Charset = ANSI_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   FormStyle = fsMDIChild
  13.   Menu = MainMenu1
  14.   Position = poDefault
  15.   Visible = True
  16.   OnActivate = FormActivate
  17.   OnClose = FormClose
  18.   OnCreate = FormCreate
  19.   OnDestroy = FormDestroy
  20.   PixelsPerInch = 96
  21.   TextHeight = 13
  22.   object DBNavigator1: TDBNavigator
  23.     Left = 0
  24.     Top = 0
  25.     Width = 421
  26.     Height = 25
  27.     DataSource = DataSource1
  28.     Align = alTop
  29.     TabOrder = 0
  30.   end
  31.   object PageControl1: TPageControl
  32.     Left = 0
  33.     Top = 25
  34.     Width = 421
  35.     Height = 144
  36.     ActivePage = GridPage
  37.     Align = alClient
  38.     TabOrder = 1
  39.     object GridPage: TTabSheet
  40.       Caption = 'GridPage'
  41.       TabVisible = False
  42.       object DBGrid1: TDBGrid
  43.         Left = 0
  44.         Top = 0
  45.         Width = 413
  46.         Height = 134
  47.         Align = alClient
  48.         DataSource = DataSource1
  49.         DefaultDrawing = False
  50.         PopupMenu = PopupMenu1
  51.         TabOrder = 0
  52.         TitleFont.Charset = ANSI_CHARSET
  53.         TitleFont.Color = clWindowText
  54.         TitleFont.Height = -11
  55.         TitleFont.Name = 'MS Sans Serif'
  56.         TitleFont.Style = []
  57.         OnDrawColumnCell = DBGrid1DrawColumnCell
  58.         OnDblClick = DBGrid1DblClick
  59.         OnKeyDown = DBGrid1KeyDown
  60.       end
  61.     end
  62.     object FormPage: TTabSheet
  63.       Caption = 'FormPage'
  64.       TabVisible = False
  65.       object ScrollBox1: TScrollBox
  66.         Left = 0
  67.         Top = 0
  68.         Width = 413
  69.         Height = 134
  70.         Align = alClient
  71.         PopupMenu = PopupMenu1
  72.         TabOrder = 0
  73.       end
  74.     end
  75.   end
  76.   object DataSource1: TDataSource
  77.     DataSet = MiniTb
  78.     OnStateChange = DataSource1StateChange
  79.     OnDataChange = DataSource1DataChange
  80.     Left = 8
  81.     Top = 96
  82.   end
  83.   object MainMenu1: TMainMenu
  84.     Left = 16
  85.     Top = 8
  86.     object Edit3: TMenuItem
  87.       Caption = '&Edit'
  88.       GroupIndex = 6
  89.       object Cut1: TMenuItem
  90.         Caption = '&Cut'
  91.         OnClick = Cut1Click
  92.       end
  93.       object Copy1: TMenuItem
  94.         Caption = '&Copy'
  95.         OnClick = Copy1Click
  96.       end
  97.       object Paste1: TMenuItem
  98.         Caption = '&Paste'
  99.         OnClick = Paste1Click
  100.       end
  101.       object N4: TMenuItem
  102.         Caption = '-'
  103.       end
  104.       object CopyRecord1: TMenuItem
  105.         Caption = 'Copy &Record'
  106.         OnClick = CopyRecord1Click
  107.       end
  108.     end
  109.     object View1: TMenuItem
  110.       Caption = '&View'
  111.       GroupIndex = 6
  112.       OnClick = View1Click
  113.       object Gridview1: TMenuItem
  114.         Caption = '&Grid view'
  115.         OnClick = Gridview1Click
  116.       end
  117.       object Formview1: TMenuItem
  118.         Caption = '&Form view'
  119.         OnClick = Formview1Click
  120.       end
  121.       object Viewtabledesign1: TMenuItem
  122.         Caption = '&View table design'
  123.         OnClick = Tabledesign1Click
  124.       end
  125.     end
  126.     object Format1: TMenuItem
  127.       Caption = '&Format'
  128.       GroupIndex = 6
  129.       object Font1: TMenuItem
  130.         Caption = '&Title font'
  131.         OnClick = Font1Click
  132.       end
  133.       object Gridfont1: TMenuItem
  134.         Caption = '&Grid font'
  135.         OnClick = Gridfont1Click
  136.       end
  137.       object Gridlines1: TMenuItem
  138.         Caption = '&Horizontal grid lines'
  139.         Checked = True
  140.         OnClick = Gridlines1Click
  141.       end
  142.       object Verticalgridlines1: TMenuItem
  143.         Caption = '&Vertical grid lines'
  144.         Checked = True
  145.         OnClick = Verticalgridlines1Click
  146.       end
  147.     end
  148.     object Edit1: TMenuItem
  149.       Caption = '&Records'
  150.       GroupIndex = 6
  151.       object First1: TMenuItem
  152.         Caption = '&First'
  153.         OnClick = First1Click
  154.       end
  155.       object Last1: TMenuItem
  156.         Caption = '&Last'
  157.         OnClick = Last1Click
  158.       end
  159.       object Next1: TMenuItem
  160.         Caption = '&Next'
  161.         OnClick = Next1Click
  162.       end
  163.       object Prior1: TMenuItem
  164.         Caption = '&Prior'
  165.         OnClick = Prior1Click
  166.       end
  167.       object Find1: TMenuItem
  168.         Caption = 'Find...'
  169.         object First2: TMenuItem
  170.           Caption = 'Find First'
  171.           OnClick = First2Click
  172.         end
  173.         object Next2: TMenuItem
  174.           Caption = 'Find Next'
  175.           OnClick = Next2Click
  176.         end
  177.         object FindPrior1: TMenuItem
  178.           Caption = 'Find Prior'
  179.           OnClick = FindPrior1Click
  180.         end
  181.         object FindLast1: TMenuItem
  182.           Caption = 'Find Last'
  183.           OnClick = FindLast1Click
  184.         end
  185.       end
  186.       object N1: TMenuItem
  187.         Caption = '-'
  188.       end
  189.       object Insert1: TMenuItem
  190.         Caption = '&Insert'
  191.         OnClick = Insert1Click
  192.       end
  193.       object Delete1: TMenuItem
  194.         Caption = '&Delete'
  195.         OnClick = Delete1Click
  196.       end
  197.       object Edit2: TMenuItem
  198.         Caption = '&Edit'
  199.         OnClick = Edit2Click
  200.       end
  201.       object Cancelchanges1: TMenuItem
  202.         Caption = '&Cancel changes'
  203.         OnClick = Cancelchanges1Click
  204.       end
  205.       object Postchanges1: TMenuItem
  206.         Caption = 'P&ost changes'
  207.         OnClick = Postchanges1Click
  208.       end
  209.       object Bookmark1: TMenuItem
  210.         Caption = '&Bookmark'
  211.         OnClick = Bookmark1Click
  212.       end
  213.     end
  214.     object Table1: TMenuItem
  215.       Caption = '&Table'
  216.       GroupIndex = 6
  217.       object Sort1: TMenuItem
  218.         Caption = '&Sort'
  219.         OnClick = Sort1Click
  220.       end
  221.       object Restrictrange1: TMenuItem
  222.         Caption = '&Apply range'
  223.         OnClick = Restrictrange1Click
  224.       end
  225.       object Clearrange1: TMenuItem
  226.         Caption = '&Clear range'
  227.         OnClick = Clearrange1Click
  228.       end
  229.       object Search1: TMenuItem
  230.         Caption = '&Find'
  231.         OnClick = Search1Click
  232.       end
  233.       object Filter1: TMenuItem
  234.         Caption = 'F&ilter'
  235.         OnClick = Filter1Click
  236.       end
  237.       object N2: TMenuItem
  238.         Caption = '-'
  239.       end
  240.       object Emptytable1: TMenuItem
  241.         Caption = '&Empty table'
  242.         OnClick = Emptytable1Click
  243.       end
  244.       object N3: TMenuItem
  245.         Caption = '-'
  246.       end
  247.       object importdata21: TMenuItem
  248.         Caption = 'I&mport data'
  249.         OnClick = importdata21Click
  250.       end
  251.       object Exportdata1: TMenuItem
  252.         Caption = 'E&xport data'
  253.         object totextfile1: TMenuItem
  254.           Caption = 'to text file'
  255.           OnClick = totextfile1Click
  256.         end
  257.         object inExcelformat1: TMenuItem
  258.           Caption = 'in Excel format'
  259.           OnClick = inExcelformat1Click
  260.         end
  261.       end
  262.       object N5: TMenuItem
  263.         Caption = '-'
  264.       end
  265.       object Restructure1: TMenuItem
  266.         Caption = '&Restructure'
  267.         OnClick = Restructure1Click
  268.       end
  269.       object N7: TMenuItem
  270.         Caption = '-'
  271.       end
  272.       object Analyze1: TMenuItem
  273.         Caption = '&Analyze'
  274.         OnClick = Analyze1Click
  275.       end
  276.     end
  277.   end
  278.   object MiniTb: TMiniTable
  279.     ReadOnly = False
  280.     Left = 8
  281.     Top = 64
  282.   end
  283.   object FontDialog1: TFontDialog
  284.     Font.Charset = DEFAULT_CHARSET
  285.     Font.Color = clWindowText
  286.     Font.Height = -11
  287.     Font.Name = 'MS Sans Serif'
  288.     Font.Style = []
  289.     MinFontSize = 0
  290.     MaxFontSize = 0
  291.     Left = 40
  292.     Top = 64
  293.   end
  294.   object OpenDialog1: TOpenDialog
  295.     Left = 40
  296.     Top = 96
  297.   end
  298.   object PopupMenu1: TPopupMenu
  299.     OnPopup = PopupMenu1Popup
  300.     Left = 92
  301.     Top = 39
  302.     object Quicksearch1: TMenuItem
  303.       Caption = 'Quick search'
  304.       OnClick = Quicksearch1Click
  305.     end
  306.     object Quickrestrict1: TMenuItem
  307.       Caption = 'Quick filter'
  308.       OnClick = Quickrestrict1Click
  309.     end
  310.     object Viewdetails1: TMenuItem
  311.       Caption = 'Show in viewer'
  312.       OnClick = Viewdetails1Click
  313.     end
  314.     object N6: TMenuItem
  315.       Caption = '-'
  316.     end
  317.     object Cut2: TMenuItem
  318.       Caption = 'Cut'
  319.       OnClick = Cut1Click
  320.     end
  321.     object Copy2: TMenuItem
  322.       Caption = 'Copy'
  323.       OnClick = Copy1Click
  324.     end
  325.     object Paste2: TMenuItem
  326.       Caption = 'Paste'
  327.       OnClick = Paste1Click
  328.     end
  329.   end
  330. end
  331.